
*{
    
    
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
     background: #2c3e50;  
}


    

 .hero{
    width: 100%;
    height: 100vh;
    
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}




.content img{
    width: 100%;
    top: 0;
    left: 0;
    position: fixed;
    

}
.content h1{
    
    font-size: 100px;
    margin: 40px auto 0; 
    background-color: transparent;
    color: #fff;
    font-weight: 200;
    transition: 0.5s;
    position: relative;
    
}
.content h1:hover {
    -webkit-text-stroke: 2px #fff;
    color: transparent;

}
.content a {
   
     
    margin: 10px auto;
    
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 70px;
    left: 25px;
    background: #fff;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 15px 25px black;
    
    
}
.content a::before
{
    margin: 0 auto 0;
    content: "";
    position: absolute;
    border: 25px solid black;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 5px solid transparent;
    transform: translate(5px);
}
.content p{
    
    margin: 10px auto 0;
    font-weight: 500;
    font-size: 1em;
    color: #fff;
    letter-spacing: 4px;
    text-transform: uppercase;
    z-index: 9;
}
.content a:hover {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.402);
    color: transparent;
    

}
.content a:active {
    transform: translateY(4px);
     box-shadow: transparent;
     
    animation-duration: 15s;
}



